GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Input.constructor   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 7
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 6
dl 0
loc 7
rs 10
c 0
b 0
f 0
cc 1
1
/**
2
 * This file is part of the O2System Venus UI Framework package.
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 *
7
 * @author         Steeve Andrian Salim
8
 * @copyright      Copyright (c) Steeve Andrian Salim
9
 */
10
// ------------------------------------------------------------------------
11
12
import Date from './Input/Date';
13
import Color from './Input/Color';
14
import Time from './Input/Time';
15
import Tags from './Input/Tags';
16
import Mask from './Input/Mask';
17
18
/**
19
 * Class Input
20
 *
21
 * @author          Teguh Rianto
22
 * @package         Components
23
 */
24
export default class Input {
25
    /**
26
     * Input.constructor
27
     */
28
    constructor() {
29
        this.date = new Date();
30
        this.color = new Color();
31
        this.time = new Time();
32
        this.tags = new Tags();
33
        this.mask = new Mask();
34
    }
35
}